@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Aladin&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Aladin&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Aladin", sans-serif;
  font-family: "Poppins", sans-serif;

  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
:root {
  --dark: #34495e;
  --light: #ffffff;
  --success: #0abf30;
  --error: #e24d4c;
  --warning: #e9bd0c;
  --info: #3498db;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
}
a {
  text-decoration: none !important;
}
a:hover {
  text-decoration: none !important;
}

img {
  width: 100%;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

/*<!========---# Navigation ----=======>*/

.app-container {
  display: grid;
  grid-template-columns: 0.3fr 1.7fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: ". .";
  height: 100vh;
}
.nav-btn-mbl {
  display: none;
}
.app-side-nav {
  background-color: #f0f0f0;
  padding: 0 0 24px 24px;
  position: relative;
}
.app-side-nav .logo {
  width: 90%;
  margin: 0 auto;
  margin-right: 24px;
}
.app-side-nav .links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.app-side-nav .links a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #8c8c8c;
  cursor: pointer;
}
.app-side-nav .links a:hover,
.app-side-nav .links a.active {
  color: #fff;
  background: #01b768;
  border-radius: 4px;
}

.app-side-nav .links a:hover img,
.app-side-nav .links a.active img {
  filter: contrast(200%) brightness(150%);
}
.app-side-nav .links a img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
}
.app-side-nav .links a.settings img,
.app-side-nav .links a.login-nav img,
.app-side-nav .links a.logout-nav img,
.app-side-nav .links a.upload-seed-nav img {
  padding: 10px;
}
.app-side-nav .links a.login-nav img {
  transform: rotate(180deg);
}
.app-side-nav .links a.login-nav,
.app-side-nav .links a.logout-nav {
  position: absolute;
  width: 90%;
  bottom: 50px;
}
.app-side-nav .links li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  bottom: 150px;
}
.app-side-nav .links a.download_btn {
  width: 200px;
  overflow: hidden;
  height: 60px;
  text-align: left;
}
.app-side-nav .links a.download_btn:hover {
  background: transparent;
  color: transparent;
  opacity: 0.7;
}
.app-side-nav .links a.download_btn img {
  width: 100%;
  height: unset;
  object-fit: unset;
  object-position: unset;
}

.app-content {
  padding-top: 50px;
  position: relative;
}

.app-content .loading-animation {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 99;
  left: 0;
  top: 0;
  position: relative;
  display: none;
}

.app-content .loading-animation.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-content .loading-animation img {
  width: 100px;
  height: 100px;
  margin-top: -100px;
  animation: rotate_loading_icon 1s linear infinite;
}

@keyframes rotate_loading_icon {
  100% {
    transform: rotate(360deg);
  }
}

/*<!========---# Login Page ----=======>*/
.auth-page {
  width: 100%;
  min-height: 87vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.auth-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.auth-header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.auth-header .logo img {
  width: 71.905px;
  height: 71px;
  flex-shrink: 0;
}
.auth-header .logo h1 {
  color: var(--01-b-768, #01b768);
  text-align: center;
  font-family: "Aladin", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
}
.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 40px;
  grid-template-areas: ". .";
  max-width: 1200px;
  margin: 0 auto;
}
.watermel-story {
  display: flex;
  width: 400px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #c5c5c5;
  border-radius: 8px;
  background: #ddd;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  position: relative;
}
.watermel-story h1 {
  font-size: 32px;
  font-weight: 600;
  color: #1d1d1d;

  margin-bottom: 24px;
  text-align: center;
}
.watermel-story p {
  font-size: 15px;
  text-align: left;
  font-weight: 400;
  color: #343434;
  margin-bottom: 12px;
}
.watermel-story p.contact {
  text-align: left;
}
.watermel-story p.contact a {
  color: #0289d4;
}
.watermel-story p.contact a:hover {
  color: #01b768;
}

.auth .form {
  /* height: 100vh; */
  width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #c5c5c5;
  border-radius: 8px;
  background: #ddd;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.auth .form form {
  width: 100%;
}
.auth .form form.sso-button-form {
  margin: 0;
}
.auth .form form.sso-button-form button {
  margin: 0;
}
.auth .form h2 {
  margin-bottom: 54px;
  color: var(--1-d-1-d-1-d, #1d1d1d);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.auth .form .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.auth .form .logo h1 {
  text-align: center;
  /* font-family: Aladin; */
  font-size: 32px;
  font-weight: 600;
  color: #1d1d1d;
}

.auth .form .input-box {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px 0;
  width: 100%;
  position: relative;
}
.auth .form .input-box input {
  border-radius: 10px;
  border: 0.5px solid #c5c5c5;
  background: var(--ffffff, #fff);
  padding: 14px 16px;
  width: 100%;
}
.auth .form .input-box label {
  position: absolute;
  bottom: 12px;
  right: 10px;
  opacity: 0.6;
}
.auth .form button {
  width: 100%;
  /* margin-top: 30px; */
  border-radius: 10px;
  background: var(--01-b-768, #01b768);
  padding: 13px 0 14px;
  border: 0;
  outline: 0;
  color: var(--ffffff, #fff);
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.auth .form form.sso-button-form button {
  width: 100%;
  border-radius: 10px;
  background: var(--01-b-768, #01b768);
  padding: 13px 0 14px;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  outline: 0;
  color: var(--ffffff, #fff);
  cursor: pointer;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.auth .form form.sso-button-form.apple button {
  background: #121312;

  color: var(--ffffff, #fff);
}
.auth .form form.sso-button-form.google button {
  background: #0289d4;
  color: var(--ffffff, #fff);
}
.auth .form form ul.errorlist {
  padding-left: 20px;
}
.auth .form form ul.errorlist li {
  font-size: 10px;
  list-style: disc;
  color: #e24d4c;
}

.auth .form a li:hover {
  opacity: 0.7;
}

.auth .form button:hover {
  opacity: 0.7;
}
.auth .form .agreement {
  font-size: 12px;
  margin: 10px 0 5px 5px;
}
.auth .form .agreement a {
  color: #0289d4;
}
.auth .form .divider {
  margin: 25px 0;
  color: var(--8-c-8-c-8-c, #8c8c8c);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.auth .form .social-auth {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth .form .social-auth::before {
  position: absolute;
  content: "";
  width: 40%;
  height: 2px;
  background: #d3d3d3;
  top: -48px;
  left: 0;
}
.auth .form .social-auth::after {
  position: absolute;
  content: "";
  width: 40%;
  height: 2px;
  background: #d3d3d3;
  top: -48px;
  right: 0;
}
.auth .form .auth-action {
  margin-top: 25px;
  font-size: 16px;
  font-weight: normal;
  color: #1d1d1d;
}
.auth .form .p_link {
  padding: 10px 0;
}
.auth .form .p_link,
.auth .form .auth-action a {
  color: #0289d4;
}
.auth .form .p_link:hover,
.auth .form .auth-action a:hover {
  color: #01b768;
}

/*<!========---# Donation icon auth ----=======>*/
.donation-btn {
  display: block;
  background: #1d1d1d;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 24px;
  position: absolute;
  bottom: 24px;
  left: 24px;
}
.donation-btn.active::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #d3c6c68a;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 1;
}
.donation-btn.active::after {
  content: "";
  position: absolute;
  right: 45%;
  bottom: 20%;
  width: 30px;
  height: 30px;
  background-image: url(../images/loading-icon.png);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 2;
  animation: rotate_loading_icon 1s infinite;
  transition: all 0.3s ease;
}

.donation-btn a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #c5c5c5;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
}
.donation-btn a img {
  width: 30px;
  filter: contrast(200%) brightness(150%);
}
.donation-btn:hover {
  background: #ed373c;
  transition: all 0.3s ease;
}

/*<!========---# Upload Seed ----=======>*/

.upload-seed h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #01b768;

  margin-bottom: 20px;
}
.upload-seed form {
  width: 600px;
  margin: 0 auto;
  padding: 24px;
}
.upload-seed form .type-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.upload-seed form .type-tabs label {
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 6px;
  border: 1px solid rgba(140, 140, 140, 0.4);
  color: #8c8c8c;
}
.upload-seed form .type-tabs input {
  display: none;
}
.upload-seed form .type-tabs label img {
  filter: invert(0.6);
  width: 20px;
  height: 20px;
}

.upload-seed form .type-tabs label {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  user-select: none; /* Prevent text selection when clicking */
  transition: background-color 0.3s ease;
}

.upload-seed form .type-tabs label:hover {
  background-color: #f0f0f0; /* Change background color on hover */
}

.upload-seed form .type-tabs input:checked ~ label {
  background-color: #01b768;
  color: #fff;
  filter: invert(00);
}
.upload-seed form .type-tabs input:checked ~ label img {
  filter: invert(00);
}

.upload-seed form .thumbnail-preview-box,
.upload-seed form .thumbnail {
  height: 200px;
  margin-top: 24px;
  border-radius: 5px;
  border: 2px dashed #1d1d1d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.upload-seed form .thumbnail.disable {
  display: none;
}

.upload-seed form .thumbnail label {
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 6px;
  color: #fff;
  background: #01b768;
  cursor: pointer;
  border: 1px solid #8c8c8c;
}
.upload-seed form .thumbnail img.thumbnail_preview {
  position: absolute;
}
.upload-seed form .thumbnail label:hover {
  opacity: 0.7;
}

.upload-seed form .choose-file-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 10px;
  grid-template-areas: ". .";
}
.upload-seed form .choose-file-container .thumbnail-preview-box {
  position: relative;
  overflow: hidden;
  display: none;
}
.upload-seed form .choose-file-container .thumbnail-preview-box.active {
  display: unset;
}
.upload-seed form .choose-file-container .thumbnail-preview-box img {
  height: 100%;
  object-fit: contain;
}
.upload-seed form .choose-file-container .thumbnail-preview-box li {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  padding: 5px;
  background: #0abf30;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.upload-seed form .select-file {
  height: 200px;
  margin-top: 24px;
  border-radius: 5px;
  border: 2px dashed #1d1d1d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-direction: column;
}
.upload-seed form .thumbnail input,
.upload-seed form .select-file input {
  display: none;
}
.upload-seed form .thumbnail img.icon,
.upload-seed form .select-file img {
  width: 50px;
  height: 50px;
}

.upload-seed form .select-file label {
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 6px;
  color: #fff;
  background: #01b768;
  cursor: pointer;
  border: 1px solid #8c8c8c;
}
.upload-seed form .select-file label:hover {
  opacity: 0.7;
}

.upload-seed form .files-preview {
  position: relative;
  padding: 10px;
  border: 2px dashed #1d1d1d;
  margin: 15px 0;
  height: 170px;
  display: none;
}
.upload-seed form .files-preview.active {
  display: block;
}

.upload-seed form .files-preview .file-container {
  width: 100%;
  overflow-x: hidden;
}

.upload-seed form .files-preview .file-container .file-list {
  width: fit-content;
  float: left;
  font-size: 15px;

  cursor: grab;
  display: flex;
  align-items: center;
  gap: 5px;
}

.upload-seed form .files-preview .file-container .box {
  width: 150px;
  height: 150px;
  background: #8c8c8c;
  border: 1px solid black;
}
.upload-seed form .files-preview .file-container .box video,
.upload-seed form .files-preview .file-container .box img,
.upload-seed form .files-preview .file-container .box audio {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.upload-seed form .description textarea {
  border-radius: 5px;
  border: 1px solid #1d1d1d;
  background: #fafafa;
  resize: none;
  outline: none;
  width: 100%;
  height: 100px;
  padding: 12px;
  margin-top: 20px;
}
.upload-seed form .private_seed_check {
  display: flex;
  align-items: center;
  margin: 14px 0;
  justify-content: space-between;
}
.upload-seed form .private_seed_check li {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* The switch - the box around the slider */
.upload-seed form .switch {
  position: relative;
  display: block;
  width: 60px;
  height: 34px;
}
.upload-seed form .switch p {
  font-size: 16px;
  color: #1d1d1d;
  font-weight: 400;
}

/* Hide default HTML checkbox */
.upload-seed form .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.upload-seed form .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.upload-seed form .switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.upload-seed form .switch input:checked + .slider {
  background-color: #01b768;
}

.upload-seed form .switch input:focus + .slider {
  box-shadow: 0 0 1px #01b768;
}

.upload-seed form .switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.upload-seed form .switch .slider.round {
  border-radius: 34px;
}

.upload-seed form .switch .slider.round:before {
  border-radius: 50%;
}

.upload-seed form button {
  padding: 12px 16px;
  background: #01b768;
  color: #fff;
  border: 0;
  outline: 0;
  cursor: pointer;
  margin-top: 12px;
  border-radius: 4px;
}
.upload-seed form button:hover {
  opacity: 0.7;
}

/*<!========---# Report and Feedback ----=======>*/
.report-feedback-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95vh;
}
.report-feedback-page .content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  padding: 30px 0 50px;
  background: #ccc;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.report-feedback-page .content-container .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0 20%;
}
.report-feedback-page .content-container .home-button {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1d1d1d;
  font-size: 24px;
}
.report-feedback-page .content-container .home-button:hover {
  color: #01b768;
}
.report-feedback-page .content-container .header .logo {
  width: 220px;
  margin-left: -15px;
}
.report-feedback-page .form {
  max-width: 60%;
  margin: 0 auto;
}
.report-feedback-page .form h1 {
  font-size: 32px;
  font-weight: 600;
  color: #1d1d1d;
  text-align: center;
}
.report-feedback-page .form p {
  font-size: 16px;
  color: #1d1d1d;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 30px;
}
.report-feedback-page .form .other-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 10px;
  grid-template-areas: ". .";
}
.report-feedback-page .form .input-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0 10px;
  grid-template-areas: ". .";
}
.report-feedback-page .form .input-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.report-feedback-page .form .input-box label {
  font-size: 16px;
  color: #1d1d1d;
}
.report-feedback-page .form .input-box textarea,
.report-feedback-page .form .input-box select,
.report-feedback-page .form .input-box input {
  padding: 10px;
  color: #1d1d1d;
  font-size: 16px;
  resize: none;
  border-radius: 6px;
  border: 1px solid #8c8c8c;
  outline: none;
  background: #f0f0f0;
}
.report-feedback-page .form button {
  background: #01b768;
  padding: 8px 14px;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.report-feedback-page .form button:hover {
  opacity: 0.7;
}
/*<!========---# Show Seed ----=======>*/
.show-seed {
  height: 95vh;
  display: flex;
  justify-content: center;
}
.show-seed .seed {
  width: 700px;
  height: fit-content;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 30px 0 0;
}
.show-seed .seed .seed-container {
  border-bottom: 1px solid #8c8c8c;
  margin: 0 24px;
}
.show-seed .seed .user {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-bottom: 20px;
}
.show-seed .seed .user strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #343434;
}
.show-seed .seed .user p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8c8c8c;
}
.show-seed .seed .user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.show-seed .seed .caption {
  font-size: 16px;
  line-height: 24px;
  color: #343434;
}
.show-seed .seed .caption p {
  font-size: 16px;
  line-height: 24px;
  color: #343434;
}
.show-seed .seed .post {
  width: 100%;
  height: 420px;
  margin-top: 20px;
  border-radius: 10px;
  border: 1px solid #8c8c8c;
  position: relative;
}

.show-seed .seed .post img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
}
.show-seed .seed .post video {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
}
.show-seed .seed .post .thumbnail {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}
.show-seed .seed .post .thumbnail.disable {
  display: none;
}
.show-seed .seed .post .video-seed.disable::before {
  display: none;
}

/* .show-seed .seed .post .video-seed::before {
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  left: 45%;
  top: 40%;
  z-index: 11;
  background: url(../images/web-app-icons/play-icon.png);
  background-position: center;
  background-size: cover;
  cursor: pointer;
} */
.show-seed .seed .views {
  display: flex;
  align-content: center;
  justify-content: flex-end;
  padding: 10px 5px;
}
.show-seed .seed .views p {
  font-size: 16px;
  line-height: 24px;
  color: #343434;
  position: relative;
}
.show-seed .seed .views p::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #8c8c8c;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 35%;
}
.show-seed .seed .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #8c8c8c;
  padding: 0 24px;
}
.show-seed .seed .post-footer p {
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 1px;
}

.show-seed .seed .post-footer .reaction-comment {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}
.show-seed .seed .post-footer .reaction-comment .not-reacted.disable {
  display: none;
}
.show-seed .seed .post-footer .reaction-comment .reacted.disable {
  display: none;
}
.show-seed .seed .post-footer .share img,
.show-seed .seed .post-footer .reaction-comment img {
  width: 30px;
  cursor: pointer;
}
/*<!========---# Donation Page ----=======>*/
.donation-page {
  width: 100%;
  height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.donation-page .heading {
  font-size: 42px;
  color: #01b768;
  margin-bottom: 100px;
}
.donation-page .donation-container {
  width: 70%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: ". .";
  gap: 20px;
}
.donation-page .donation-container .box {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px,
    rgb(209, 213, 219) 0px 0px 0px 1px inset;
  border-radius: 12px;
  padding: 24px;
}
.donation-page .donation-container .box h2 {
  font-size: 28px;
  font-weight: 600;
  color: #01b768;
  position: relative;
  margin-bottom: 24px;
}
.donation-page .donation-container .box h2::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 3px;
  background: #01b768;
  left: 0;
  bottom: -10px;
}
.donation-page .donation-container .box p {
  text-align: justify;
}
.donation-page .donation-container .box form {
}
.donation-page .donation-container .box form h3 {
  font-size: 18px;
  color: #343434;
  text-align: center;
  margin: 0 0 24px;
}
.donation-page .donation-container .box form .row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}
.donation-page .donation-container .box form .col4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 10px;
  grid-template-areas: ". .";
}
.donation-page .donation-container .box form input.disappear {
  display: none;
  width: 0px;
  height: 0px;
  opacity: 0;
}

.donation-page .donation-container form button {
  padding: 12px 20px;
  background: rgb(1, 183, 104);
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.donation-page .donation-container form button:hover {
  opacity: 0.7;
}
.donation-page .donation-container .box form .button-box {
  position: relative;
  margin: 24px 0 0;
}

.donation-page .donation-container .box form .button-box.active::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #d3c6c68a;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 1;
}
.donation-page .donation-container .box form .button-box.active::after {
  content: "";
  position: absolute;
  right: 45%;
  bottom: 20%;
  width: 30px;
  height: 30px;
  background-image: url(../images/loading-icon.png);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 2;
  animation: rotate_loading_icon 1s infinite;
  transition: all 0.3s ease;
}

/* Customize the label (the container) */
.donation-page .radio-btn {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.donation-page .radio-btn.type1 {
  width: 50%;
}

/* Hide the browser's default checkbox */
.donation-page .radio-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.donation-page .radio-btn input.custom-amount {
  position: relative;
  opacity: 1;
  cursor: pointer;
  height: unset;
  width: 50px;
}

.donation-page .checkmark {
  padding: 12px 15px;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  background-color: #eee;
  border: 1px solid rgb(1, 183, 104);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgb(1, 183, 104, 0.15) 0px 0px 0px 1px;
}

.donation-page .radio-btn:hover input ~ .checkmark {
  background-color: #ccc;
  color: #343434;
}

.donation-page .radio-btn input:checked ~ .checkmark {
  background-color: #01b768;
  color: #fff;
}

.donation-page .donation-container form .custom-amount-box {
  margin: 10px 0;
  width: 100%;
  display: none;
}
.donation-page .donation-container form .custom-amount-box.activate {
  display: block;
}
.donation-page .donation-container form .custom-amount-box input {
  width: 100%;
  padding: 10px;
  border: 1px solid rgb(1, 183, 104);
  border-radius: 4px;
}
/*<!========---# Settings ----=======>*/
.setting-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95vh;
}
.setting-page .account-delete {
  width: 50%;
  padding: 24px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  background: #f2f2f2;
}
.setting-page .account-delete p {
  margin-bottom: 10px;
}
.setting-page .account-delete a {
  padding: 10px 15px;
  background: #ed373c;
  color: #fff;
  border: 0;
  outline: 0;
  border-radius: 4px;
  display: block;
  width: fit-content;
}
.setting-page .account-delete a:hover {
  opacity: 0.7;
  cursor: pointer;
}
/*<!========---# General Popup ----=======>*/
.account-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #35353577;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.account-popup .popup-card {
  width: 600px;
  height: fit-content;
  background: #fff;
  padding: 20px;
  position: relative;
}
.account-popup .popup-card .close-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  cursor: pointer;
  font-size: 24px;
  background: #ddd;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  color: #ed373c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.account-popup .popup-card .close-btn:hover {
  background: #8c8c8c;
}

.account-popup .popup-card h3 {
  font-size: 24px;
  color: #343434;
  font-weight: 600;
  margin-bottom: 12px;
}
.account-popup .popup-card p {
  font-size: 15px;
  color: #343434;
  font-weight: 400;
  margin-bottom: 12px;
}
.account-popup .popup-card .buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.account-popup .popup-card .buttons.accounts a {
  padding: 8px 12px;
  border: 1px solid #343434;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  background: #343434;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}
.account-popup .popup-card .buttons.accounts a:last-child {
  background: #01b768;
  border: 1px solid #01b768;
}
.account-popup .popup-card .buttons.accounts a:hover {
  color: #fff;
  background: transparent;
  border: 1px solid #343434;
  color: #343434;
}
.account-popup .popup-card .download-app-banner {
  background: #afacac;
  margin-top: 20px;
  padding: 20px;
}
.account-popup .popup-card .download-app-banner h1 {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  text-align: center;
}
.account-popup .popup-card .download-app-banner li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}
.account-popup .popup-card .download-app-banner li img {
  width: 170px;
}

/*<!========---# Cookies Pop up ----=======>*/
.cookies-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #35353577;
  bottom: 0;
  left: 0;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 2;
}
.cookies-container .cookies-card {
  width: 600px;
  height: fit-content;
  background: #fff;
  padding: 20px;
}
.cookies-container .cookies-card h3 {
  font-size: 24px;
  color: #343434;
  font-weight: 600;
  margin-bottom: 12px;
}
.cookies-container .cookies-card p {
  font-size: 15px;
  color: #343434;
  font-weight: 400;
  margin-bottom: 12px;
}
.cookies-container .cookies-card a {
  color: #0289d4;
  text-decoration: underline !important;
}
.cookies-container .cookies-card a:hover {
  opacity: 0.7;
}
.cookies-container .cookies-card button {
  padding: 8px 12px;
  border: 1px solid #343434;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  background: #343434;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 10px;
}
.cookies-container .cookies-card button:hover {
  background: transparent;
  color: #343434;
}

/*<!========---# Footer ----=======>*/

.footer {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer .download-app {
  width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 10px;
  grid-template-areas: ". .";
  height: 70px;
  margin-bottom: 10px;
}
.footer .download-app a {
}

.footer .footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer .footer-links a {
  color: #1d1d1d;
  font-size: 16px;
}
.footer .footer-links a:hover {
  color: #0289d4;
}

/*<!========---# Toast Messages Alert ----=======>*/

/* Import Google font - Poppins */
.alert-notifications {
  position: fixed;
  top: 35px;
  right: 20px;
  z-index: 99999999999;
}
.alert-notifications strong {
  text-transform: capitalize;
}

.alert-notifications :where(.toast, .column) {
  display: flex;
  align-items: center;
}

.alert-notifications .toast {
  width: fit-content;
  position: relative;
  overflow: hidden;
  list-style: none;
  border-radius: 4px;
  padding: 16px 17px;
  margin-bottom: 10px;
  background: var(--light);
  border: 1px solid #8c8c8c;

  justify-content: space-between;
  animation: show_toast 0.3s ease forwards;
}

@keyframes show_toast {
  0% {
    transform: translateX(100%);
  }

  40% {
    transform: translateX(-5%);
  }

  80% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-10px);
  }
}

.alert-notifications .toast.hide {
  animation: hide_toast 0.3s ease forwards;
}

@keyframes hide_toast {
  0% {
    transform: translateX(-10px);
  }

  40% {
    transform: translateX(0%);
  }

  80% {
    transform: translateX(-5%);
  }

  100% {
    transform: translateX(calc(100% + 20px));
  }
}

.alert-notifications .toast::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  bottom: 0px;
  left: 0px;
  animation: progress 5s linear forwards;
}

@keyframes progress {
  100% {
    width: 0%;
  }
}

.alert-notifications .toast.success::before,
.alert-notifications .btn#success {
  background: var(--success);
}

.alert-notifications .toast.error::before,
.alert-notifications .btn#error {
  background: var(--error);
}

.alert-notifications .toast.warning::before,
.alert-notifications .btn#warning {
  background: var(--warning);
}

.alert-notifications .toast.info::before,
.alert-notifications .btn#info {
  background: var(--info);
}

.alert-notifications .toast .column i {
  font-size: 1.75rem;
}

.alert-notifications .toast.success .column i {
  color: var(--success);
}

.alert-notifications .toast.error .column i {
  color: var(--error);
}

.alert-notifications .toast.warning .column i {
  color: var(--warning);
}

.alert-notifications .toast.info .column i {
  color: var(--info);
}

.alert-notifications .toast .column span {
  font-size: 1.07rem;
  margin-left: 12px;
}

.alert-notifications .toast i:last-child {
  color: #aeb0d7;
  cursor: pointer;
  margin-left: 30px;
}

.alert-notifications .toast i:last-child:hover {
  color: var(--dark);
}

.alert-notifications .buttons .btn {
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0 5px;
  color: var(--light);
  font-size: 1.2rem;
  padding: 10px 20px;
  border-radius: 4px;
}
/* Error Pages */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}
.error-page img {
  width: 50%;
}
.error-page .description {
  text-align: center;
  padding: 20px 0;
  width: 600px;
}
.error-page div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.error-page div a {
  padding: 10px 20px;
  border: 1px solid #3498db;
  background: #3498db;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 130px;
  transition: all 0.3s ease;
}
.error-page div a:hover {
  background: #343434;
}
@media screen and (max-width: 530px) {
  .alert-notifications {
    width: 95%;
  }

  .alert-notifications .toast {
    width: 100%;
    font-size: 1rem;
    margin-left: 20px;
  }

  .alert-notifications.buttons .btn {
    margin: 0 1px;
    font-size: 1.1rem;
    padding: 8px 15px;
  }
}

/*<!========---# Responsive ----=======>*/
@media screen and (max-width: 500px) {
  .app-container {
    display: grid;
    grid-template-columns: 1;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: ".";
    height: 100vh;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .app-side-nav {
    background-color: #f0f0f0;
    padding: 0 0 24px 24px;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    padding-top: 120px;
    position: absolute;
    height: 100vh;
    left: -200%;
    transition: all 0.3s ease-in-out;
  }
  .app-side-nav.active {
    left: 0;
  }
  .app-side-nav .logo {
    width: 100%;
    margin: 0 auto;
    margin-right: 24px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-content: center;
    justify-content: space-between;
    padding: 5px 24px;
    background: #fff;
    z-index: 99;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .nav-btn-mbl {
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-btn-mbl i {
    font-size: 30px;
  }

  .app-side-nav .logo img {
    width: 50%;
  }
  .app-side-nav .links {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .app-side-nav .links li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    position: relative;
    bottom: 0;
  }
  .app-side-nav .links li img {
    width: 80%;
  }
  .app-side-nav .links a img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: center;
  }
  .app-side-nav .links a.login-nav,
  .app-side-nav .links a.logout-nav {
    position: absolute;
    width: 90%;
    bottom: 30px;
  }
  .app-content {
    padding-top: 50px;
    position: relative;
  }
  .upload-seed h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .upload-seed form {
    width: 100%;
    margin: 0 auto;
    padding: 24px;
  }
  .upload-seed form .type-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
  }
  .upload-seed form .type-tabs label {
    width: 100px;
    font-size: 13px;
  }
  .upload-seed form .choose-file-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 10px;
    grid-template-areas: ". .";
  }

  .upload-seed form .select-file {
    height: 150px;
    margin-top: 24px;
    border-radius: 5px;
    border: 2px dashed #1d1d1d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-direction: column;
  }
  .upload-seed form .select-file label {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 6px;
    color: #fff;
    background: #01b768;
    cursor: pointer;
  }
  .upload-seed form .thumbnail {
    height: 150px;
  }
  .upload-seed form .thumbnail label {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 6px;
    color: #fff;
    background: #01b768;
    cursor: pointer;
    border: 1px solid #8c8c8c;
  }
  .upload-seed form .private_seed_check {
    display: flex;
    align-items: center;
    margin: 14px 0;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
  }
  /*<!========---# Auth Page ----=======>*/
  .auth-page {
    height: fit-content;
    padding: 50px 12px 100px;
  }
  .auth-header {
    margin-bottom: 20px;
  }

  .auth-header .logo img {
    width: 50px;
    height: 50px;
  }
  .auth-header .logo h1 {
    font-size: 40px;
  }
  .auth-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
  }
  .watermel-story {
    width: 100%;
  }
  .auth .form {
    /* height: 100vh; */
    width: 100%;
  }
  .watermel-story h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .watermel-story p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .auth .form .logo h1 {
    font-size: 28px;
  }
  .auth .form .input-box input {
    font-size: 13px;
  }
  .auth .form button {
    margin-top: 24px;
    font-size: 13px;
  }
  .auth .form form.sso-button-form button {
    font-size: 13px;
  }
  .auth .form .auth-action {
    margin-top: 29px;
    font-size: 13px;
  }

  .donation-btn a {
    font-size: 13px;
  }
  .donation-btn-container {
    position: fixed;
    height: 70px;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.7) 24%
    );
  }
  .donation-btn {
    display: block;
    background: #1d1d1d;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 24px;
    position: absolute;
    width: calc(100% - 48px);

    bottom: 12px;
    left: 24px;
  }

  /*<!========---# Report and Feedback ----=======>*/
  .report-feedback-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: unset;
    padding: 12px;
  }
  .report-feedback-page .content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 6px;
    padding: 30px 0 10px;
    background: #ccc;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
      rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 24px 12px;
  }
  .report-feedback-page .content-container .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 0 0%;
  }
  .report-feedback-page .content-container .home-button {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1d1d1d;
    font-size: 24px;
    margin-top: -20px;
  }
  .report-feedback-page .content-container .home-button:hover {
    color: #01b768;
  }
  .report-feedback-page .content-container .header .logo {
    width: 180px;
    margin-left: unset;
  }
  .report-feedback-page .content-container .header .logo a {
    display: block;
  }
  .report-feedback-page .content-container .header .logo img {
    display: block;
  }
  .report-feedback-page .form {
    max-width: 100%;
    margin: 0 auto;
  }
  .report-feedback-page .form h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1d;
    text-align: center;
  }
  .report-feedback-page .form p {
    font-size: 13px;
    color: #1d1d1d;
    text-align: justify;
    margin-top: 5px;
    margin-bottom: 30px;
  }
  .report-feedback-page .form .other-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 10px;
    grid-template-areas: ". .";
  }
  .report-feedback-page .form .input-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0 10px;
    grid-template-areas: ".";
  }
  .report-feedback-page .form .input-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
  }
  .report-feedback-page .form .input-box label {
    font-size: 16px;
    color: #1d1d1d;
  }
  .report-feedback-page .form .input-box textarea,
  .report-feedback-page .form .input-box select,
  .report-feedback-page .form .input-box input {
    padding: 10px;
    width: 100%;
    color: #1d1d1d;
    font-size: 16px;
    resize: none;
    border-radius: 6px;
    border: 1px solid #8c8c8c;
    outline: none;
    background: #f0f0f0;
  }
  .report-feedback-page .form button {
    background: #01b768;
    padding: 8px 14px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    border: 0;
    outline: 0;
    cursor: pointer;
  }
  .report-feedback-page .form button:hover {
    opacity: 0.7;
  }
  /*<!========---# Delete Account ----=======>*/
  .setting-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  .setting-page .account-delete {
    width: 90%;
    padding: 18px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
      rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    background: #f2f2f2;
  }
  .setting-page .account-delete p {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .setting-page .account-delete a {
    padding: 10px 15px;
    background: #ed373c;
    color: #fff;
    border: 0;
    outline: 0;
    border-radius: 4px;
    display: block;
    width: fit-content;
    font-size: 12px;
  }
  .setting-page .account-delete a:hover {
    opacity: 0.7;
    cursor: pointer;
  }

  /*<!========---# General Popup ----=======>*/
  .account-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #35353577;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }
  .account-popup .popup-card {
    width: calc(100% - 24px);
    height: fit-content;
    padding: 12px;
    position: relative;
  }
  .account-popup .popup-card .close-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    cursor: pointer;
    font-size: 24px;
    background: #ddd;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    color: #ed373c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
  }
  .account-popup .popup-card .close-btn:hover {
    background: #8c8c8c;
  }

  .account-popup .popup-card h3 {
    font-size: 20px;
    color: #343434;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .account-popup .popup-card p {
    font-size: 13px;
    color: #343434;
    font-weight: 400;
    margin-bottom: 8px;
  }
  .account-popup .popup-card .buttons {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .account-popup .popup-card .buttons.accounts a {
    padding: 8px 12px;
    border: 1px solid #343434;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    background: #343434;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
  }
  .account-popup .popup-card .buttons.accounts a:last-child {
    background: #01b768;
    border: 1px solid #01b768;
  }
  .account-popup .popup-card .buttons.accounts a:hover {
    color: #fff;
    background: transparent;
    border: 1px solid #343434;
    color: #343434;
  }
  .account-popup .popup-card .download-app-banner {
    background: #afacac;
    margin-bottom: 8px;
    padding: 12px;
  }
  .account-popup .popup-card .download-app-banner h1 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    text-align: center;
  }
  .account-popup .popup-card .download-app-banner li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
  }
  .account-popup .popup-card .download-app-banner li img {
    width: 120px;
  }

  /*<!========---# Cookies Pop up ----=======>*/
  .cookies-container {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #35353577;
    bottom: 0;
    left: 0;
    /* display: flex; */
    align-items: flex-end;
    justify-content: center;
    display: none;
    z-index: 2;
  }
  .cookies-container .cookies-card {
    width: 100%;
    height: fit-content;
    background: #fff;
    padding: 20px;
  }
  .cookies-container .cookies-card h3 {
    font-size: 24px;
    color: #343434;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .cookies-container .cookies-card p {
    font-size: 15px;
    color: #343434;
    font-weight: 400;
    margin-bottom: 12px;
  }
  .cookies-container .cookies-card a {
    color: #0289d4;
    text-decoration: underline !important;
  }
  .cookies-container .cookies-card a:hover {
    opacity: 0.7;
  }
  .cookies-container .cookies-card button {
    padding: 8px 12px;
    border: 1px solid #343434;
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    background: #343434;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
  }
  .cookies-container .cookies-card button:hover {
    background: transparent;
    color: #343434;
  }

  /*<!========---# Show Seed ----=======>*/
  .show-seed {
    height: 95vh;
    display: flex;
    justify-content: center;
    padding: 0 10px;
    padding-top: 90px;
    width: 100% !important;
  }
  .show-seed .seed {
    width: 100% !important;
    height: unset;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 12px 0 0;
    display: block;
    display: flex;
  }
  .show-seed .seed .seed-container {
    border-bottom: 1px solid #8c8c8c;
    margin: 0 12px;
    min-width: 375px !important;
  }

  .show-seed .seed .user {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-bottom: 20px;
  }
  .show-seed .seed .user strong {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #343434;
  }
  .show-seed .seed .user p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #8c8c8c;
  }
  .show-seed .seed .user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
  }
  .show-seed .seed .caption {
    font-size: 16px;
    line-height: 24px;
    color: #343434;
  }
  .show-seed .seed .caption p {
    font-size: 16px;
    line-height: 24px;
    color: #343434;
  }
  .show-seed .seed .post {
    width: 100%;
    height: 420px;
    margin-top: 20px;
    border-radius: 10px;
    border: 1px solid #8c8c8c;
    position: relative;
  }

  .show-seed .seed .post img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .show-seed .seed .post video {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .show-seed .seed .post .thumbnail {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
  }
  .show-seed .seed .post .thumbnail.disable {
    display: none;
  }
  .show-seed .seed .post .video-seed.disable::before {
    display: none;
  }

  /* .show-seed .seed .post .video-seed::before {
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  left: 45%;
  top: 40%;
  z-index: 11;
  background: url(../images/web-app-icons/play-icon.png);
  background-position: center;
  background-size: cover;
  cursor: pointer;
} */
  .show-seed .seed .views {
    display: flex;
    align-content: center;
    justify-content: flex-end;
    padding: 10px 5px;
  }
  .show-seed .seed .views p {
    font-size: 16px;
    line-height: 24px;
    color: #343434;
    position: relative;
  }
  .show-seed .seed .views p::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #8c8c8c;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 35%;
  }
  .show-seed .seed .post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #8c8c8c;
    padding: 0 24px;
  }
  .show-seed .seed .post-footer p {
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 1px;
  }

  .show-seed .seed .post-footer .reaction-comment {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
  }
  .show-seed .seed .post-footer .reaction-comment .not-reacted.disable {
    display: none;
  }
  .show-seed .seed .post-footer .reaction-comment .reacted.disable {
    display: none;
  }
  .show-seed .seed .post-footer .share img,
  .show-seed .seed .post-footer .reaction-comment img {
    width: 30px;
    cursor: pointer;
  }
  /*<!========---# Donation Page ----=======>*/
  .donation-page {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    overflow-y: scroll;
  }
  .donation-page .heading {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .donation-page .donation-container {
    width: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .donation-page .donation-container .box h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .donation-page .donation-container .box p {
    font-size: 12px;
  }
  .donation-page .checkmark {
    padding: 12px 15px;
    font-size: 12px;
    font-weight: 600;
  }
  /* Error Pages */
  .error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
  }
  .error-page img {
    width: 90%;
  }
  .error-page .description {
    text-align: center;
    padding: 20px 0;
    width: 350px;
  }
  .error-page div {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  /*  footer link */

  .footer {
    padding: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer.b-100 {
    padding-bottom: 100px;
  }
  .footer .footer-links {
    display: flex;
    width: 100%;
    align-items: unset;
    justify-content: unset;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 10px;
    grid-template-areas: ". .";
  }
  .footer .footer-links a {
    color: #1d1d1d;
    font-size: 12px;
  }
  .footer .footer-links a:hover {
    color: #0289d4;
  }
}
